Welcome![Sign In][Sign Up]
Location:
Search - deviceiocontrol usb

Search list

[Other resourceFANGWENUSB

Description: //打开 USB 口读写, 由驱动程序的 Pipe 名确定 HANDLE hPipe = OpenMyDevPipe(\"MyPipe1\") //驱动程序里面的 Pipe 名, 对应访问某个端点的 I/O, 这里我乱写的, 需要与驱动一致 if(hPipe != INVALID_HANDLE_VALUE) //打开 Pipe 成功 { ReadFile(hPipe, Buffer, BufSize, &nBytesRead, NULL) //从 hPipe 里读取数据到 Buffer 里 //WriteFile(hPipe, Buffer, BytesToWrite, &nBytesWritten, NULL) //把 Buffer 里面的 BytesToWrite 字节写入 hPipe CloseHandle(hPipe) } //使用 DeviceIoControl 访问 USB 设备 HANDLE hDevice = OpenMyDevice() if(hDevice != INVALID_HANDLE_VALUE) //打开设备成功 { //这些 DeviceIoControl 功能都是由设备定义的, 具体看设备和驱动的资料 if(DeviceIoControl(hDevice, IOCTL_READ_xxxx, &IOBlock, sizeof(IOBLOCK), &c, 1, &nBytes, NULL)) { //成功 } CloseHandle(hDevice) }-/ / open USB literacy, Drivers from the Pipe were identified HANDLE hPipe = OpenMyDevPipe ( " MyPipe1 ") / / driver inside Pipe, and a corresponding visit to the endpoint I / O, Here, I write without basis. consistent with the need to drive if (hPipe! = INVALID_HANDLE_VALUE) / / Open Pipe success (ReadFile (hPipe, Buffer, BufSize,
Platform: | Size: 1813 | Author: lanxilange | Hits:

[OtherMFC_USBView

Description: USB容量获取用DeviceIoControl得到U盘物理参数!
Platform: | Size: 2334944 | Author: 李恒 | Hits:

[Windows KernelUSB硬盤測試

Description: 用於生產USB硬盤盒的測試,測試時間為20-30秒. 原理是USB硬盤插入后會向頂層窗體發送WM_DEVICECHANGE消息,之后再用DeviceIoControl(見於原碼中的CDisk類)向磁盤發送控制信息以取得相關測試資料.
Platform: | Size: 936792 | Author: lmq@coolermaster.com.cn | Hits:

[USB developusb2303

Description: 一个USB接口驱动编程例子-a USB-driven programming examples
Platform: | Size: 2757632 | Author: 高文武 | Hits:

[USB developEZUSB批量_中断传输例程

Description: sime examples of EZUSB s bulk tranfer
Platform: | Size: 96256 | Author: 盛可帕 | Hits:

[Windows Develop实战DeviceIoControl:通过API访问设备驱动程序

Description: 对DeviceIoControl函数的用法的最全的介绍,并有多个程序的实际例子让你对硬件的操作的认识更加深刻-right DeviceIoControl function of the usage of the most comprehensive presentation there are a number of procedures and practical examples of the right to allow you to operate the hardware even deeper understanding
Platform: | Size: 148480 | Author: 陈万通 | Hits:

[VC/MFCDeviceIoControl

Description: DeviceIoControl:详细的讲解如何运用这个进行一些涉及硬件的编程,调用驱动等-DeviceIoControl : detailed explanation on how to use some of the hardware involved in the program, such as call-driven
Platform: | Size: 44032 | Author: 李志亮 | Hits:

[Windows CEFANGWENUSB

Description:
Platform: | Size: 2048 | Author: lanxilange | Hits:

[OS programtestUSB

Description: 一个查找系统USB的源码程序,可以查找HID设备,U盘,以及其他USB设备等!
Platform: | Size: 92160 | Author: 陈伟钦 | Hits:

[VC/MFCDeviceIoControl

Description: 实战DeviceIoControl:通过API访问设备驱动程序,绝对经典·~-Actual DeviceIoControl: visit through the device driver API is definitely a classic ~
Platform: | Size: 168960 | Author: 林风 | Hits:

[Windows CECSoundBaseRocorder

Description: wince下的录音放音小程序,简单实用,evc编写-wince under the recording applet playback, simple and practical, evc prepared
Platform: | Size: 46080 | Author: 张运凯 | Hits:

[USB developMFC_USBView

Description: USB容量获取用DeviceIoControl得到U盘物理参数!-USB capacity DeviceIoControl be used to obtain physical parameters U disk!
Platform: | Size: 4501504 | Author: 李恒 | Hits:

[Driver DevelopDriverTestA

Description: 测试USB驱动程序的应用程序代码,用来实现VendorRequest。使用了DeviceIoControl-USB driver test application code, used to achieve VendorRequest. Using DeviceIoControl
Platform: | Size: 24576 | Author: Cai zhijian | Hits:

[Driver DevelopUsbFat32Scsi

Description: Qt 4.7.2 + msvc2010 (msvc 版的 QT) 写的 Qt Gui 版 Spti, 即是 WinDDK里面一个 使用 DeviceIoControl 操作 SCSI 类型磁盘的例子, 本次编写此程序主要用于测试 usb 闪盘的 固件, 协助 usb 驱动 和 固件的程序开发. 同时也对在 Qt 中使用 win32 api 有一定的借鉴作用.-Qt 4.7.2+ msvc2010 (msvc version of QT) to write the Qt Gui version Spti, that is WinDDK DeviceIoControl operation inside a SCSI type of disk using the example of this preparation The procedure used to test the usb flash drive' s firmware, usb help drivers and firmware program development. but also in the use of Qt has some win32 api reference.
Platform: | Size: 10240 | Author: 黄展飞 | Hits:

CodeBus www.codebus.net